From: Andreas Schwab Date: Wed, 9 Dec 2009 14:26:26 +0000 (+0000) Subject: (xg_tool_bar_proxy_help_callback): Fix missing return. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8989 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b498d042aba97060b39f29dc4043e304ef2dc12f;p=emacs.git (xg_tool_bar_proxy_help_callback): Fix missing return. --- diff --git a/src/ChangeLog b/src/ChangeLog index 3f2debe5c1a..0bf88bb3e4b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2009-12-09 Andreas Schwab + * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return. + Fix implicit function declarations. * cmds.c: Include "frame.h". * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM. diff --git a/src/gtkutil.c b/src/gtkutil.c index b1e238af55c..8e5814c3ef8 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -3455,7 +3455,7 @@ xg_tool_bar_proxy_help_callback (w, event, client_data) GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_PROXY_BUTTON)); - xg_tool_bar_help_callback (wbutton, event, client_data); + return xg_tool_bar_help_callback (wbutton, event, client_data); }